home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / ContourPlot / Source / splin2.h < prev    next >
C/C++ Source or Header  |  1993-01-26  |  786b  |  20 lines

  1.  
  2. void splin2(float *x1a, float *x2a, float **ya, float **y2a, int m, int n, float x1, float x2, float *y);
  3. void splie2(float *x1a, float *x2a, float **ya, int m, int n, float **y2a);
  4. void splint(float *xa, float *ya, float *y2a, int n, float x, float *y);
  5. void spline(float *x, float *y, int n, float yp1, float ypn, float *y2);
  6.  
  7. /* my versions */
  8. float *fvector(int nl, int nh);
  9. void free_fvector(float *v, int nl, int nh);
  10. float **fmatrix(int nrl, int nrh, int ncl, int nch);
  11. void free_fmatrix(float **m, int nrl, int nrh, int ncl, int nch);
  12.  
  13. /* originals */
  14. float *vector(int nl, int nh);
  15. void free_vector(float *v, int nl, int nh);
  16. float **matrix(int nrl, int nrh, int ncl, int nch);
  17. void free_matrix(float **m, int nrl, int nrh, int ncl, int nch);
  18.  
  19. void nrerror(char *error_text);
  20.